home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / include / bits / wordsize.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-08-31  |  175 b   |  9 lines

  1. /* Determine the wordsize from the preprocessor defines.  */
  2.  
  3. #if defined __x86_64__
  4. # define __WORDSIZE    64
  5. # define __WORDSIZE_COMPAT32    1
  6. #else
  7. # define __WORDSIZE    32
  8. #endif
  9.